Cloin
Lead Generation HTML Landing Page Template
Cloin is HTML landing page template with modern and clean features. In addition real flexibility and customization. We hope you like it! :)
Welcome! First of all we want to thank you for purchasing our Premium Startup Landing Page Template
We really do appreciate every sale. If you like our work please do not forget to rate it. It helps us in developing new and better items.

In the following sections we will explain how to set up and use it the easiest way possible. If you have any questions that you feel should have been in this document you can contact us through our profile page on themeforest.net/user/morad and we'll get back to you as soon as possible. Thanks so much!!!
For questions on basic HTML, JavaScript or CSS editing - please give your question a quick Google or visit W3Schools as template issues get top priority. You will need some knowledge of HTML/CSS to edit this tempate.
Use Firebug or Chrome Developer Tools.
Do not start from scratch, use an existing page from the demo and modify it to learn how it works.
Quickly find what you are looking for in this document by using your browser's "Find in Page" feature, typically Control + F.
Don't forget to re-explore the live demo for layouts, usage ideas and sample code.
-
RTL Support
-
Based on Twitter Bootstrap 3.3.5
-
Built With Sass
-
100% W3C Valid Files
-
Fully Responsive Layout (PC, Tablet and Mobile phone)
-
Cross Browser Compatible (Chrome, Opera, Safari, Mozzila, IE9+)
-
Taking Care of Content Possibilities
-
Banner Parallax
-
Banner Fullscreen
-
Banner Video Background
-
1 Leadgen PHP Form
-
9 Content Blocks
-
Unlimited Colors
-
Very Easy to Customize
-
Very Detailed Documentation
-
Font Awesome Icons
-
Over 800 Google Web Fonts You Can Use
HTML folder is structured as following:
css - contains all sass and css files
js - contains all js files
images - separated into 2 folders. 1st "general-elements" contains general elements like pattern, logo and related design elements. 2nd "files" contains the images used in preview.
php - contains php files related to forms.
4 .html files - for main page.
In HTML Structure, we will talk about every structure of all content used as possible. These content are as following:
HTML Markup
Travel Tour template is based on Bootstrap v3.3.5 - a collection of CSS and JS files that can help you rapidly develop sites that look beautiful at any size, be it a 17" laptop screen or an iPhone.
Bootstrap's base grid is a variation of the grid system. The syntax is simple and it's effective cross browser, but the awesome part is that it also has the flexibility to go mobile like a champ. You can really easily customize all part of site or build new.
The default Bootstrap3 grid system is composed by 12 columns, named like "col-*-1", "col-*-2", "col-*-3"...."col-*-12". Grid systems are used for creating page layouts through a series of rows and columns that house your content.
Each .html file contains the HTML structure of the template. Here is the general structure (shortened):
<div class="container">
<div class="row">
<div class="col-md-12">1 Column - Content goes here</div>
</div>
<div class="row">
<div class="col-md-6">1/2 Column - Content goes here</div>
<div class="col-md-6">1/2 Column - Content goes here</div>
</div>
<div class="row">
<div class="col-md-4">1/3 Column - Content goes here</div>
<div class="col-md-4">1/3 Column - Content goes here</div>
<div class="col-md-4">1/3 Column - Content goes here</div>
</div>
<div class="row">
<div class="col-md-3">1/4 Column - Content goes here</div>
<div class="col-md-3">1/4 Column - Content goes here</div>
<div class="col-md-3">1/4 Column - Content goes here</div>
<div class="col-md-3">1/4 Column - Content goes here</div>
</div>
</div>
General Structure
All HTML files has the same structure. I made this similarity to save time and efforts.
<!DOCTYPE html>
<html lang="en-US">
<head>
<!-- Meta
============================================= -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, intial-scale=1, max-scale=1">
<!-- Stylesheets
============================================= -->
<link href="css/css-assets.css" rel="stylesheet">
<link href="css/style.css" rel="stylesheet">
<!-- Favicon
============================================= -->
<link rel="shortcut icon" href="images/general-elements/favicon/favicon.png">
<link rel="apple-touch-icon" href="images/general-elements/favicon/apple-touch-icon.png">
<link rel="apple-touch-icon" sizes="72x72" href="images/general-elements/favicon/apple-touch-icon-72x72.png">
<link rel="apple-touch-icon" sizes="114x114" href="images/general-elements/favicon/apple-touch-icon-114x114.png">
<!-- Title
============================================= -->
<title>Cloin</title>
</head>
<body>
<!-- Document Full Container
============================================= -->
<div id="full-container">
<!-- Header
============================================= -->
<header id="header">
<div id="header-bar-1" class="header-bar">
<div class="header-bar-wrap">
.
.
</div><!-- .header-bar-wrap -->
</div><!-- #header-bar-1 end -->
</header><!-- #header end -->
<!-- Banner
============================================= -->
<section id="banner">
<div class="banner-parallax" data-banner-height="600">
.
.
.
</div><!-- .banner-parallax end -->
</section><!-- #banner end -->
<!-- Content
============================================= -->
<section id="content">
<div id="content-wrap">
.
.
.
</div><!-- #content-wrap -->
</section><!-- #content end -->
<!-- Footer
============================================= -->
<footer id="footer">
<div id="footer-bar-1" class="footer-bar">
.
.
</div><!-- #footer-bar-1 end -->
</footer><!-- #footer end -->
</div><!-- #full-container end -->
<a class="scroll-top-icon scroll-top" href="#"><i class="fa fa-angle-up"></i></a>
<!-- External JavaScripts
============================================= -->
<script src="js/jquery.js"></script>
.
.
<script src='js/functions.js'></script>
</body>
</html>
Now i will talk about each main section as following:
<head>
<head> contains common meta tags, title, favicon and the attachment of CSS stylesheet.
<head>
<!-- Meta
============================================= -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, intial-scale=1, max-scale=1">
<!-- Stylesheets
============================================= -->
<link href="css/css-assets.css" rel="stylesheet">
<link href="css/style.css" rel="stylesheet">
<!-- Favicon
============================================= -->
<link rel="shortcut icon" href="images/general-elements/favicon/favicon.png">
<link rel="apple-touch-icon" href="images/general-elements/favicon/apple-touch-icon.png">
<link rel="apple-touch-icon" sizes="72x72" href="images/general-elements/favicon/apple-touch-icon-72x72.png">
<link rel="apple-touch-icon" sizes="114x114" href="images/general-elements/favicon/apple-touch-icon-114x114.png">
<!-- Title
============================================= -->
<title>Cloin</title>
</head>
Body
<body> contains the appearing content like header, main content and footer. JS attachment is at the end of body tag
<body>
<!-- Document Full Container
============================================= -->
<div id="full-container">
<!-- Header
============================================= -->
<header id="header">
<div id="header-bar-1" class="header-bar">
<div class="header-bar-wrap">
.
.
</div><!-- .header-bar-wrap -->
</div><!-- #header-bar-1 end -->
</header><!-- #header end -->
<!-- Banner
============================================= -->
<section id="banner">
<div class="banner-parallax" data-banner-height="600">
.
.
.
</div><!-- .banner-parallax end -->
</section><!-- #banner end -->
<!-- Content
============================================= -->
<section id="content">
<div id="content-wrap">
.
.
.
</div><!-- #content-wrap -->
</section><!-- #content end -->
<!-- Footer
============================================= -->
<footer id="footer">
<div id="footer-bar-1" class="footer-bar">
.
.
</div><!-- #footer-bar-1 end -->
</footer><!-- #footer end -->
</div><!-- #full-container end -->
<a class="scroll-top-icon scroll-top" href="#"><i class="fa fa-angle-up"></i></a>
<!-- External JavaScripts
============================================= -->
<script src="js/jquery.js"></script>
.
.
<script src='js/functions.js'></script>
</body>
In banner section, there is multiple style content used. They are as following:
It will be as following:
- Banner Parallax [ PHP Form ]
- Video Background
- Banner Fullscreen
First, the Banner container has the following code:
<!-- Banner
============================================= -->
<section id="banner">
.
.
.
</section><!-- #banner end -->
You have the ability to set custom height to the Banner. Just add data attribute data-banner-height="500" for example to <div class="banner-parallax"> as following:
<!-- Banner
============================================= -->
<section id="banner">
<div class="banner-parallax" data-banner-height="500">
Each content available within the banner will be explained as following:
1. Banner Parallax [ PHP Form ]
You can only use the banner section without slider, just making it work as parallax background. You also can use the same content used in the slider.
Also you can use blur effect on the background image. Just add class blured-bg to <div class="banner-parallax">
It has the following code:
<!-- Banner
============================================= -->
<section id="banner">
<div class="banner-parallax" data-banner-height="650">
<img src="images/files/parallax-bg/img-1.jpg" alt="">
<div class="overlay-colored color-bg-dark opacity-85"></div><!-- .overlay-colored end -->
<div class="slide-content">
<div class="container">
<div class="row">
<div class="col-md-6">
<div class="banner-center-box text-white">
<span class="subheading">We Craft Stuffs</span>
<h1>
<span class="heading-200">We Do</span>
Professional Things
<span class="heading-200">to Grow Your Business</span>
</h1>
<p class="description">
We care to deliver and craft adaptive services and solutions to our customers to achieve and satisfy their needs. We always take attention to every details within work.
</p>
<div class="btn-row mt-20">
<a class="btn x-large colorful hover-dark rounded move-top" href="#">Let's Start</a>
<small>
We Hope to Listen
<br>
From You Soon
</small>
</div><!-- .btn-row end -->
</div><!-- .banner-center-box end -->
</div><!-- .col-md-6 end -->
<div class="col-md-5 col-md-push-1">
<div class="banner-center-box">
<div class="cta-subscribe cta-subscribe-1 box-form text-center">
<div class="box-title">
<span class="icon icon-Megaphone"></span>
<h3>Get Started Today</h3>
<p>Everything you need to grow your business. Order our services today!</p>
</div><!-- end .box-title -->
<div class="box-content">
<div class="cs-notifications">
<div class="cs-notifications-content"></div>
</div><!-- .cs-notifications end -->
<form id="form-cta-subscribe-1" class="redirected">
<div class="form-group">
<span class="field-icon icon icon-User"></span>
<input type="text" name="cs1Name" id="cs1Name" class="form-control" placeholder="Name">
</div><!-- .form-group end -->
<div class="form-group">
<span class="field-icon icon icon-Mail"></span>
<input type="text" name="cs1Email" id="cs1Email" class="form-control" placeholder="Email">
</div><!-- .form-group end -->
<div class="form-group">
<span class="field-icon icon icon-Phone2"></span>
<input type="text" name="cs1PhoneNum" id="cs1PhoneNum" class="form-control" placeholder="Phone Number">
</div><!-- .form-group end -->
<div class="form-group">
<input type="submit" class="form-control" value="Submit">
</div><!-- .form-group end -->
</form><!-- #form-cta-subscribe-1 end -->
</div><!-- .box-content end -->
</div><!-- .box-form end -->
</div><!-- .banner-center-box end -->
</div><!-- .col-md-5 -->
</div><!-- .row end -->
</div><!-- .container end -->
</div><!-- .slide-content end -->
</div><!-- .banner-parallax end -->
</section><!-- #banner end -->
Take care that the first element must be <img> in the .banner-parallax. This img tag is used to set the background of the banner parallax.
You can also use Overlay Colored like used in banner slider and prallax sections in main content of the template.
They use the same way they are using in Banner Slider, but just add these 2 elements before the element with class="slide-content" as shown in the above code.
When you use dark background per each slide, you can add class "text-white" to <div class="banner-center-box">
Also if you want make texts to be text aligned left, just remove class "text-center" from <div class="banner-center-box">
You have the ability to add Overlay Colored for each slide. It will be as following:
Overlay Colored
You can control background color option with custom color class. You can see that there is a class called color-bg-theme added as following:
<div class="overlay-colored color-bg-dark"></div><!-- .overlay-colored end -->
Also you can control background opacity option with custom class. You can see that there is a class called opacity-80 added as following:
<div class="overlay-colored color-bg-dark opacity-80"></div><!-- .overlay-colored end -->
use opacity value from opacity-05 to opacity-100 classes with increase of 5.
The PHP Form
You can add custom error and success message for the header form validation.
There are 2 data attributes that you can you for this purpose.
These 2 data attributes are data-error-msg and data-success-msg.
Use these 2 data attribute can be added to <div class="cs-notifications">.
Use them with the proper value you want. This useful for different languages support as its controlled by js.
So it's a good option to get some way to edit it flexibly.
Also, there is ability to add support for the language that error messages appear with. This is supported by the validation plugin used with the contact form.
Here is how the related language file is attached:
<!-- External JavaScripts
============================================= -->
.
.
<script src='js/jquery.validate.min.js'></script>
<script src="https://ajax.aspnetcdn.com/ajax/jquery.validate/1.9/localization/messages_ar.js"></script>
.
.
Just attach the proper javascript line (directly after jquery validate attachment) that match the language you want form the following list of CDNs:
http://ajax.aspnetcdn.com/ajax/jquery.validate/1.9/localization/messages_ar.js
http://ajax.aspnetcdn.com/ajax/jquery.validate/1.9/localization/messages_bg.js
http://ajax.aspnetcdn.com/ajax/jquery.validate/1.9/localization/messages_ca.js
http://ajax.aspnetcdn.com/ajax/jquery.validate/1.9/localization/messages_cs.js
http://ajax.aspnetcdn.com/ajax/jquery.validate/1.9/localization/messages_da.js
http://ajax.aspnetcdn.com/ajax/jquery.validate/1.9/localization/messages_de.js
http://ajax.aspnetcdn.com/ajax/jquery.validate/1.9/localization/messages_el.js
http://ajax.aspnetcdn.com/ajax/jquery.validate/1.9/localization/messages_es.js
http://ajax.aspnetcdn.com/ajax/jquery.validate/1.9/localization/messages_eu.js
http://ajax.aspnetcdn.com/ajax/jquery.validate/1.9/localization/messages_fa.js
http://ajax.aspnetcdn.com/ajax/jquery.validate/1.9/localization/messages_fi.js
http://ajax.aspnetcdn.com/ajax/jquery.validate/1.9/localization/messages_fr.js
http://ajax.aspnetcdn.com/ajax/jquery.validate/1.9/localization/messages_he.js
http://ajax.aspnetcdn.com/ajax/jquery.validate/1.9/localization/messages_hu.js
http://ajax.aspnetcdn.com/ajax/jquery.validate/1.9/localization/messages_it.js
http://ajax.aspnetcdn.com/ajax/jquery.validate/1.9/localization/messages_ja.js
http://ajax.aspnetcdn.com/ajax/jquery.validate/1.9/localization/messages_kk.js
http://ajax.aspnetcdn.com/ajax/jquery.validate/1.9/localization/messages_lt.js
http://ajax.aspnetcdn.com/ajax/jquery.validate/1.9/localization/messages_lv.js
http://ajax.aspnetcdn.com/ajax/jquery.validate/1.9/localization/messages_nl.js
http://ajax.aspnetcdn.com/ajax/jquery.validate/1.9/localization/messages_no.js
http://ajax.aspnetcdn.com/ajax/jquery.validate/1.9/localization/messages_pl.js
http://ajax.aspnetcdn.com/ajax/jquery.validate/1.9/localization/messages_ro.js
http://ajax.aspnetcdn.com/ajax/jquery.validate/1.9/localization/messages_ru.js
http://ajax.aspnetcdn.com/ajax/jquery.validate/1.9/localization/messages_si.js
http://ajax.aspnetcdn.com/ajax/jquery.validate/1.9/localization/messages_sk.js
http://ajax.aspnetcdn.com/ajax/jquery.validate/1.9/localization/messages_sl.js
http://ajax.aspnetcdn.com/ajax/jquery.validate/1.9/localization/messages_th.js
http://ajax.aspnetcdn.com/ajax/jquery.validate/1.9/localization/messages_tr.js
http://ajax.aspnetcdn.com/ajax/jquery.validate/1.9/localization/messages_vi.js
http://ajax.aspnetcdn.com/ajax/jquery.validate/1.9/localization/methods_de.js
http://ajax.aspnetcdn.com/ajax/jquery.validate/1.9/localization/methods_nl.js
After a user fill the form successfully, the php file that called cs1-process.php in php folder is sending the data entered to the email assign in the cs1-process.php. In this file, you will find in line 6 a variable called $EmailTo. Set its value to the email you want.
Here is the line of this variable:
<?php
.
$EmailTo = "moradxd@gmail.com";
.
?>
2. Video Background
Use video background in banner section just by adding div element with class "video-background"before the element with class="slide-content" as following:
<!-- Banner
============================================= -->
<section id="banner">
<div class="banner-parallax" data-banner-height="650">
<div class="video-background" data-property="{videoURL:'uy9QBBLGFxY'}"></div><!-- end .video-background end -->
<div class="overlay-colored color-bg-dark opacity-85"></div><!-- .overlay-colored end -->
<div class="slide-content">
<div class="container">
<div class="row">
.
.
</div><!-- .row end -->
</div><!-- .container end -->
</div><!-- .slide-content end -->
</div><!-- .banner-parallax end -->
</section><!-- #banner end -->
To specify the video you want to use, just add data attribute data-propery. Inside it, you will find variable called videoURL.
Give it the value with the id of the video you want to use.
3. Banner Fullscreen
To make the banner appears as a fullscreen, just add class="fullscreen" to the <section id="banner"> element as following:
<!-- Banner
============================================= -->
<section id="banner" class="fullscreen">
.
.
In this section, we will talk about sections contents in main content area.
First, i will talk about the general structure of 2 common styles of content which are Flat Section and Parallax Section
Main Content Structure
The main content has the following code:
<!-- Content
============================================= -->
<section id="content">
<div id="content-wrap">
.
.
.
</div><!-- #content-wrap -->
</section><!-- #content end -->
For Flat Section and Parallax Section, they will be explained as following:
Now i will show the 1st type, Flat Section as following:
Flat Section
It used for showing content with plan background color without parallax background image effect. This feature has separated section for this purpose.
Flat Section is a div with class "section-flat" as following:
<!-- === Section Our Services 1 =========== -->
<div id="section-our-services-1" class="section-flat">
<div class="section-content">
<div class="container">
<div class="row">
.
.
</div><!-- .row end -->
</div><!-- .container end -->
</div><!-- .section-content end -->
</div><!-- .section-flat end -->
I have used in this example the section call "Section Our Services 1". You will find Section Title where it presents the title of each section.
You also will find div with class="section-content" where you can add the section content.
Parallax Section
This section type is used for showing content with parallax background style effect.
Parallax Section is a div with class "section-parallax" as following:
<!-- === Section CTA 1 =========== -->
<div id="section-cta-1" class="section-parallax center-vertical text-white">
<img src="images/files/parallax-bg/img-3.jpg" alt="">
<div class="overlay-colored color-bg-dark opacity-85"></div><!-- .overlay-colored end -->
<div class="section-content">
<div class="container">
<div class="row">
<div class="col-md-6">
<div class="box-center">
<h1>
<span class="heading-200">We Are Waiting to</span>
<br>
Listen From You!
</h1>
<p class="description">
We care to deliver adaptive services and solutions to our customers to achieve and satisfy their needs.
</p>
</div><!-- .box-center end -->
</div><!-- .col-md-6 end -->
<div class="col-md-6">
<div class="box-center">
<div class="btn-row style-2 mt-md-50">
<a class="btn x-large colorful hover-dark rounded move-top" href="#">Get Quote</a>
<small>
We Hope to Listen
<br>
From You Soon
</small>
</div><!-- .btn-row end -->
</div><!-- .box-center end -->
</div><!-- .col-md-6 end -->
</div><!-- .row end -->
</div><!-- .container end -->
</div><!-- .section-content end -->
</div><!-- .section-flat end -->
You can specify the Background Image by assigning the first child image inside .section-parallax.
You have the ability to add Overlay Colored layer.
They will be as following:
You have the ability to add Overlay Colored layer for each slide.
They will be as following:
Overlay Colored
You can control background color option with custom color class. You can see that there is a class called color-bg-theme added as following:
<div class="overlay-colored color-bg-dark"></div><!-- .overlay-colored end -->
Also you can control background opacity option with custom class. You can see that there is a class called opacity-80 added as following:
<div class="overlay-colored color-bg-dark opacity-80"></div><!-- .overlay-colored end -->
use opacity value from opacity-05 to opacity-100 classes with increase of 5.
Now i will talk about all content section such as Section Our Services 1, Section Some Facts 1, ... to Footer section.
Section Our Services 1
It uses Flat Section with id="section-our-services-1".
It has the following code:
<!-- === Section Our Services 1 =========== -->
<div id="section-our-services-1" class="section-flat">
<div class="section-content">
<div class="container">
<div class="row">
<div class="col-md-8 col-md-push-2">
<h2 class="title-featured-1 text-center">
<span class="heading-200">We Always Take Attention to Every Details Within Work. We Care to Deliver and Craft</span> Adaptive Services <span class="heading-200">and Solutions to
Our Customers to Achieve and</span> Satisfy Their Needs.
</h2>
</div><!-- .col-md-8 end -->
<div class="col-md-12">
<div class="divider-container">
<div class="divider-line">
</div><!-- .divider-line end -->
</div><!-- .divider-container end -->
</div><!-- .col-md-12 end -->
<div class="col-md-3 col-sm-6">
.
.
</div><!-- .col-md-3 -->
.
.
</div><!-- .row end -->
</div><!-- .container end -->
</div><!-- .section-content end -->
</div><!-- .section-flat end -->
There is box info with <div class="box-info box-service-1"> as following:
<div class="box-info box-service-1 mb-md-40">
<div class="box-icon">
<span class="icon icon-Megaphone"></span>
</div><!-- .box-icon end -->
<div class="box-content">
<h4><a href="javascript:;">Technological Innovation</a></h4>
<p>
Praesent dapibus, neque id cursus faucibus, tortor neque egestas auguae, eu vulputate magna eu erat.
</p>
</div><!-- .box-content end -->
</div><!-- .box-info box-service-1 end -->
Section Our Services 2
It uses Flat Section with id="section-our-services-2".
It has the following code:
<!-- === Section Our Services 2 =========== -->
<div id="section-our-services-2" class="section-flat">
<div class="section-content">
<div class="container">
<div class="row">
<div class="col-md-6">
.
.
</div><!-- .col-md-6 -->
<div class="col-md-6">
.
.
</div><!-- .col-md-6 -->
</div><!-- .row end -->
</div><!-- .container end -->
</div><!-- .section-content end -->
</div><!-- .section-flat end -->
There is box info with <div class="box-info box-service-2"> as following:
<div class="box-info box-service-2 mb-20">
<div class="box-icon">
<span class="icon icon-MusicMixer"></span>
</div><!-- .box-icon end -->
<div class="box-content">
<h5>Ultimate Tools</h5>
<p>
Praesent dapibus, neque id cursus faucibus, tortor neque.
</p>
</div><!-- .box-content end -->
</div><!-- .box-info box-service-2 end -->
There is a video preview with <div class="video-preview"> as following:
<div class="video-preview">
<a class="img-bg lightbox-iframe" href="https://vimeo.com/45830194">
<div class="overlay-colored color-bg-dark opacity-50"></div><!-- .overlay-colored end -->
<img src="images/files/img-featured-1/img-1.jpg" alt="">
</a><!-- .img-bg end -->
<a class="btn-video lightbox-iframe" href="https://vimeo.com/45830194">
<i class="fa fa-play"></i>
</a><!-- .btn-video end -->
</div><!-- .video-preview end -->
Section Some Facts 1
It uses Parallax Section with id="section-some-facts-1".
It has the following code:
<!-- === Section Some Facts 1 =========== -->
<div id="section-some-facts-1" class="section-parallax">
<div class="section-content">
<div class="container">
<div class="row">
<div class="col-md-12">
.
.
</div><!-- .col-md-12 end -->
</div><!-- .row end -->
</div><!-- .container end -->
</div><!-- .section-content end -->
</div><!-- .section-flat end -->
There is a list of fun facts with <ul class="list-some-facts list-boxes boxes-4"> as following:
<ul class="list-some-facts list-boxes boxes-4">
<li>
<div class="box-info box-some-fact-1 text-white">
<div class="box-icon">
<span class="icon icon-Files"></span>
</div><!-- .box-icon end -->
<div class="box-content">
<h2><span class="counter-stats">1465</span></h2>
<h5>Projects Completed</h5>
</div><!-- .box-content end -->
</div><!-- .box-info box-some-fact-1 end -->
</li>
<li>
.
.
</li>
</ul><!-- .list-boxes end -->
"Pricing Plans"
It uses Flat Section with id="section-pricing-plans".
It has the following code:
<!-- === Pricing Plans =========== -->
<div id="pricing-plans" class="section-flat" data-scroll-index="4">
<div class="section-content">
<div class="container">
<div class="row">
<div class="col-md-8 col-md-offset-2">
<div class="section-title text-center">
<h2>
<span class="heading-200">Get Your Best Preferred and Suitable</span>
Pricing Plans and Options
</h2>
<p>
This should be used to tell a story and let your users know a little more about your product or service. How can you benefit them?
</p>
</div><!-- .section-title end -->
</div><!-- .col-md-8 end -->
<div class="col-md-12">
.
.
</div><!-- .col-md-12 end -->
</div><!-- .row end -->
</div><!-- .container end -->
</div><!-- .section-content end -->
</div><!-- .section-flat end -->
There is pricing table with class="pricing-table" . It has the following code:
<div class="pricing-table">
<div class="row">
<div class="col-md-4 col-sm-6">
<div class="pt-column">
<div class="pt-column-header">
<span class="icon icon-User"></span>
<div class="title">
<span>Starter</span>
</div><!-- .title end -->
<div class="price">
<h2>$249</h2>
<span class="period">Per Month</span>
</div><!-- .price end -->
<a class="btn large colorful hover-dark rounded move-top" href="#">Get Started Now</a>
</div>
<ul class="pt-column-content">
<li>Marketing strategy <i class="fas fa-check-square"></i></li>
<li>Competitive analysis <i class="fas fa-check-square"></i></li>
<li>Social media audit <i class="fas fa-check-square"></i></li>
<li>Monthly management <i class="fas fa-check-square"></i></li>
<li>Unlimited data transfer <i class="fas fa-window-close"></i></li>
</ul><!-- .pt-column-content end -->
</div><!-- .pt-column end -->
</div><!-- .col-md-4 end -->
<div class="col-md-4 col-sm-6 mt-sm-50">
<div class="pt-column featured">
.
.
</div><!-- .pt-column end -->
</div><!-- .col-md-4 end -->
<div class="col-md-4 col-sm-6 mt-md-50">
.
.
</div><!-- .col-md-4 end -->
</div><!-- .row end -->
</div><!-- .pricing-table end -->
You can add class featured to <div class="pt-column"> to make it featured column.
"Customers Testimonials"
It uses Flat Section with id="section-customers-testimonials-1".
It has the following code:
<!-- === Section Customers Testimonials 1 =========== -->
<div id="section-customers-testimonials-1" class="section-flat">
<div class="section-content">
<div class="container">
<div class="row">
<div class="col-md-6 col-md-push-3">
<div class="section-title text-center">
<h2>
<span class="heading-200">What Are Our</span>
<br>
Customers Testimonials
</h2>
<p class="description">
This should be used to tell a story and let your users know a little more about your product
or service. How
can you benefit them?
</p>
</div><!-- .section-title end -->
</div><!-- .col-md-6 end -->
<div class="col-md-12">
.
.
</div><!-- .col-md-12 end -->
</div><!-- .row end -->
</div><!-- .container end -->
</div><!-- .section-content end -->
</div><!-- .section-flat end -->
There is carousel slider with class="slider-testimonials" . It has the following code:
<div class="slider-testimonials mt-20">
<ul class="slick-slider">
<li>
<div class="slide">
<div class="testimonial-single-1">
<div class="ts-content">
Quisque volutpat condimentum velit. Class aptent taciti sociosqu ad litora
torquent per conubia.
<span class="icon-quote">“</span>
</div><!-- .ts-content end -->
<div class="ts-person">
<div class="ts-img">
<img src="images/files/sliders/clients-testimonials/img-1.jpg" alt="">
</div><!-- .ts-img end -->
<div class="ts-name">
<h4>Michael Smith</h4>
<span>Backend Developer</span>
</div><!-- .ts-name end -->
<div class="rating">
<i class="fa fa-star"></i>
<i class="fa fa-star"></i>
<i class="fa fa-star"></i>
<i class="fa fa-star"></i>
<i class="fa fa-star"></i>
</div><!-- .rating end -->
</div><!-- .ts-person end -->
</div><!-- .testimonial-single-1 -->
</div><!-- .slide end -->
</li>
<li>
.
.
</li>
</ul><!-- .slick-slider end -->
</div><!-- .slider-testimonials end -->
Section Clients 1
It uses Flat Section with id="section-fun-facts-1".
It has the following code:
<!-- === Section Clients 1 =========== -->
<div id="section-clients-1" class="section-flat">
<div class="section-content">
<div class="container">
<div class="row">
<div class="col-md-12">
.
.
</div><!-- .col-md-12 end -->
</div><!-- .row end -->
</div><!-- .container end -->
</div><!-- .section-content end -->
</div><!-- .section-flat end -->
There is a slider clients with <div class="slider-clients"> as following:
<div class="slider-clients">
<ul class="slick-slider">
<li>
<div class="client-single">
<a href="javascript:;"><img src="images/files/sliders/clients/img-1.png" alt=""></a>
</div>
</li>
.
.
<li>
.
.
</li>
</ul><!-- .slick-slider end -->
</div><!-- .slider-clients end -->
Section CTA 1
It uses Parallax Section with id="section-cta-1".
It has the following code:
<!-- === Section CTA 1 =========== -->
<div id="section-cta-1" class="section-parallax center-vertical text-white">
<img src="images/files/parallax-bg/img-3.jpg" alt="">
<div class="overlay-colored color-bg-dark opacity-85"></div><!-- .overlay-colored end -->
<div class="section-content">
<div class="container">
<div class="row">
<div class="col-md-6">
<div class="box-center">
<h1>
<span class="heading-200">We Are Waiting to</span>
<br>
Listen From You!
</h1>
<p class="description">
We care to deliver adaptive services and solutions to our customers to achieve and satisfy their needs.
</p>
</div><!-- .box-center end -->
</div><!-- .col-md-6 end -->
<div class="col-md-6">
<div class="box-center">
<div class="btn-row style-2 mt-md-50">
<a class="btn x-large colorful hover-dark rounded move-top" href="#">Get Quote</a>
<small>
We Hope to Listen
<br>
From You Soon
</small>
</div><!-- .btn-row end -->
</div><!-- .box-center end -->
</div><!-- .col-md-6 end -->
</div><!-- .row end -->
</div><!-- .container end -->
</div><!-- .section-content end -->
</div><!-- .section-flat end -->
In this section, i will talk about miscellaneous other contents like Button, Lightboxes, ... etc.
They will be as following:
Buttons
Buttons come with almost all common basic styles around. It comes with 6 styles in both default state and hover state where you can combine and specify these options manually between default state and hover state.
Here is all features included with Buttons:
- 6 Default States
- 6 Hover States
- 5 Sizes
- Rounded or Not
First here is the initial code for Buttons as following:
<a class="btn" href="#">
Read More
</a>
Now i will talk about how to change between Buttons features as following:
6 Default States
There are 6 default states for buttons by adding these following classes to the <a>:
- white
- transparent-white
- dark
- transparent-dark
- colorful
- transparent-colorful
8 Hover States
There are 6 hover states for buttons by adding these following classes to the <a>:
- hover-white
- hover-transparent-white
- hover-dark
- hover-transparent-dark
- hover-colorful
- hover-transparent-colorful
5 Sizes
There are 5 sizes for buttons by adding these following classes to the <a>:
- x-small
- small
- medium
- large
- x-large
Rounded or Not
You can choose between rounded state or not for buttons by adding "rounded" class to the <a>:
Here an example showing the use of these features:
<a class="btn small colorful hover-dark rounded" href="#">Take a Tour</a>
Lightboxes
There are 3 common type of light boxes are used, Lightbox Image, Lightbox Gallery and Lightbox Iframe.
They will be as following:
Lightbox Image
It used <a> tag. Just add class lightbox-img to it and give the href the destination of the image that will be popuped.
Here is some example:
<a class="overlay lightbox-img" href="images/files/portfolio/lightbox/img-2.jpg"></a>
Lightbox Gallery
It used <a> tag. Just add class lightbox-gallery to it and give the href the destination of the image that will be popuped.
Here is some example:
<a class="overlay lightbox-gallery" href="images/files/portfolio/lightbox/img-2.jpg"></a>
Lightbox Iframe
It used <a> tag. Just add class lightbox-iframe to it and give the href the destination of the video that will be popuped.
Here is some example:
<a class="overlay lightbox-iframe" href="https://vimeo.com/45830194"></a>
In this section, i will talk about general styling features like Skins, Scroll Animation, CSS Helpers ... etc.
They will be as following:
-
RTL CSS Files
-
Background Patterns
-
CSS Helpers
RTL CSS Files
For the rtl version, here is the included stylesheets in <head> as following:
<link href="../css/css-assets-rtl.css" rel="stylesheet">
<link href="../css/style-rtl.css" rel="stylesheet">
Background Patterns
In case of using boxed width pages, you can use 15 included Background Patterns.
There are 2 sets of patterns which are Pattern Grid and Pattern Texture
For Pattern Texture, just add this classes in <body> tag from bg-pattern-texture-1 to bg-pattern-texture-15
For Pattern Grid, just add this classes in <body> tag from bg-pattern-grid-1 to bg-pattern-grid-18
You can add your pattern backgrounds in the proper folder depending on its type in images/general-elements/bg-patterns. Then add the proper code in scss/bg-patterns.scss
CSS Helpers
There are some classes you can use to add some Padding, Margin or Height for any elements you want.
They are very useful to optimize content spacing and height to make content looks fit.
Padding
The option of using custom padding is very useful to optimize content spacing and making content looks fit.
In the template, fixed classes are added to apply padding in all directions like left, right, top, bottom, top-bottom and left-right.
The range values is from 0px to 140px with difference 10px for each step.
Now i will show example of each side of padding:
Padding Left
It's named from class pl-10 to pl-140 with step 10px. Here is example:
<div class="pl-10"> . . . </div>
Padding Right
It's named from class pr-10 to pr-140 with step 10px. Here is example:
<div class="pr-10"> . . . </div>
Padding Top
It's named from class pt-10 to pt-140 with step 10px. Here is example:
<div class="pt-10"> . . . </div>
Padding Bottom
It's named from class pb-10 to pb-140 with step 10px. Here is example:
<div class="pb-10"> . . . </div>
Padding Left Right
It's named from class plr-10 to plr-140 with step 10px. Here is example:
<div class="plr-10"> . . . </div>
Padding Top Botom
It's named from class ptb-10 to ptb-140 with step 10px. Here is example:
<div class="ptb-10"> . . . </div>
In small devices, it's sometimes needed to change these applied padding values, so there are also classes made to be applied in the small devices that starts from widths < 992px
Here are examples of how it's applied:
Responsive Padding Left
It's named from class pl-md-10 to pl-md-140 with step 10px. Here is example:
<div class="pl-md-10"> . . . </div>
Responsive Padding Right
It's named from class pr-md-10 to pr-md-140 with step 10px. Here is example:
<div class="pr-md-10"> . . . </div>
Responsive Padding Top
It's named from class pt-md-10 to pt-md-140 with step 10px. Here is example:
<div class="pt-md-10"> . . . </div>
Responsive Padding Bottom
It's named from class pb-md-10 to pb-md-140 with step 10px. Here is example:
<div class="pl-md-10"> . . . </div>
Responsive Padding Left Right
It's named from class plr-md-10 to plr-md-140 with step 10px. Here is example:
<div class="plr-md-10"> . . . </div>
Responsive Padding Top Botom
It's named from class ptb-md-10 to ptb-m-140 with step 10px. Here is example:
<div class="ptb-md-10"> . . . </div>
Margin
The option of using custom margin is very useful to optimize content spacing and making content looks fit.
In the template fixed classes are added to apply margin in all directions like left, right, top, bottom, top-bottom and left-right.
The range values is from 0px to 140px with difference 10px for each step.
Now i will show example of each side of margin:
Margin Left
It's named from class ml-10 to ml-140 with step 10px. Here is example:
<div class="ml-10"> . . . </div>
Margin Right
It's named from class mr-10 to mr-140 with step 10px. Here is example:
<div class="mr-10"> . . . </div>
Margin Top
It's named from class mt-10 to mt-140 with step 10px. Here is example:
<div class="mt-10"> . . . </div>
Margin Bottom
It's named from class mb-10 to mb-140 with step 10px. Here is example:
<div class="mb-10"> . . . </div>
Margin Left Right
It's named from class mlr-10 to mlr-140 with step 10px. Here is example:
<div class="mlr-10"> . . . </div>
Margin Top Botom
It's named from class mtb-10 to mtb-140 with step 10px. Here is example:
<div class="mtb-10"> . . . </div>
In small devices, it's sometimes needed to change these applied margin values, so there are also classes made to be applied in the small devices that starts from widths < 992px
Here are examples of how it's applied:
Responsive Margin Left
It's named from class ml-md-10 to ml-md-140 with step 10px. Here is example:
<div class="ml-md-10"> . . . </div>
Responsive Margin Right
It's named from class mr-md-10 to mr-md-140 with step 10px. Here is example:
<div class="mr-md-10"> . . . </div>
Responsive Margin Top
It's named from class mt-md-10 to mt-md-140 with step 10px. Here is example:
<div class="mt-md-10"> . . . </div>
Responsive Margin Bottom
It's named from class mb-10 to mb-md-140 with step 10px. Here is example:
<div class="mb-md-10"> . . . </div>
Responsive Margin Left Right
It's named from class mlr-md-10 to mlr-md-140 with step 10px. Here is example:
<div class="mlr-md-10"> . . . </div>
Responsive Margin Top Botom
It's named from class mtb-md-10 to mtb-md-140 with step 10px. Here is example:
<div class="mtb-md-10"> . . . </div>
Height
The option of using custom height is very useful to optimize content height of some specific element and making content looks fit. I used it in portfolio single page in the image preview.
It's named from class h-0 to h-900.
From class h-0 to h-100 with step 10px.
From class h-100 to h-900 with step 20px.
Here is example:
<div class="h-10"> . . . </div>
In small devices, it's sometimes needed to change these applied height values, so there are also classes made to be applied in the small devices that starts from widths < 992px
It's named from class h-md-0 to h-md-900.
From class h-md-0 to h-md-100 with step 10px.
From class h-md-100 to h-md-900 with step 20px.
Here is example:
<div class="h-md-10"> . . . </div>
All CSS files css files are stored at "css" folder.
It's all built with Sass. Sass files are existed in css/scss folder.
There are 2 .scss files which compiled to 2 .css files that attached in each html file.
style.scss has all codes and import of _variables.scss file.
css-assets.scss has all general css assets include.
_variables.scss files has all css variables of values used in the template
The style.scss file is as following:
/*=================================================================================
Theme Name: Cloin
Theme URI: http://moradhamdy.com/morad/cloin-demo
Description: Lead Generation Landing Page Template
Author: Morad
Author URI: http://moradhamdy.com/
Version: 1.0
SCSS Stylesheet
===================================================================================*/
/**
* styles.css file is divided as the following:
*
* ( 01 ) - General Settings
* ( 02 ) - General Contents
* ( 03 ) - Header
* ( 04 ) - Content
* ( 05 ) - Footer
*
*/
// Imports ( Others at Bottom )
// ==================================
/**
* First, including commons.css which contains
* css-helpers codes
*/
@import "commons";
// ==================================
@import "header";
@import "banner";
@import "content";
@import "footer";
// Imports ( Rest imports )
// ==================================
// ==================================
And at the end of style.scss file, it's the place where you can make import of another .scss files as following:
.
.
.
// Imports ( Rest imports )
// ==================================
// ==================================
The css-assets.scss which has all general css assets include, is as following:
/*=====================================================================
CSS ASSETS
----------
Here are all imports of css libraries and helpers like
Bootstrap, fontAwesome, Slick, .. etc.
*=================================================================== */
// CSS Assets Imports
// ==================================
@import "https://fonts.googleapis.com/css?family=Roboto:300,400,700&display=swap";
@import "_variables";
@import "bootstrap";
@import "slick/slick.scss";
@import "../fonts/fontawesome/css/all.css";
@import "https://use.fontawesome.com/releases/v5.3.1/css/v4-shims.css";
@import "../fonts/Stroke-Gap-Icons-Webfont/style.css";
@import "magnific-popup";
@import "bg-patterns";
// ==================================
This template uses several scripts many of which are documented within the template's code. If you're a developer, you will find this particularly useful.
There are jquery plugins used such as Slick Slider, Ajax Chimp, ... etc.
These files are existed in js folder. Javascript files are attached at the bottom of each HTML. It looks like this:
<!-- External JavaScripts
============================================= -->
<script src="js/jquery.js"></script>
<script src="js/jRespond.min.js"></script>
<script src="js/jquery.fitvids.js"></script>
<script src="js/jquery.stellar.js"></script>
<script src="scss/slick/slick.min.js"></script>
<script src="js/jquery.magnific-popup.min.js"></script>
<script src="js/jquery.waitforimages.min.js"></script>
<script src="js/jquery.waypoints.min.js"></script>
<script src="js/jquery.validate.min.js"></script>
<script src="js/simple-scrollbar.min.js"></script>
<script src='js/functions.js'></script>
For the case of RTL, you will need to add the proper attachment of js file for contact form validation message. I have talked about this in section "Main Content" in Contact Us part.
Here is how you will update the attachment of all js files.
<!-- External JavaScripts
============================================= -->
.
.
<script src='js/jquery.validate.min.js'></script>
<script src="https://ajax.aspnetcdn.com/ajax/jquery.validate/1.9/localization/messages_ar.js"></script>
.
.
In the functions.js, there the codes of using plugins and custom scripts.
All codes almost well commented for understanding and customization.
I didn't include PSD files as there is almost no graphical elements are built on Photoshop :)
Fonts
CSS
Scripts
PSD
No PSD files included!
Support includes bugs fixing, and general problem solving with features explained on the template’s official sales page.

Once again, thank you so much for purchasing this template. As I said at the beginning, I'd be glad to help you if you have any questions relating to this template. No guarantees, but I'll do my best to assist. If you have a more general question relating to the templates on ThemeForest, you might consider visiting the forums and asking your question in the "Item Discussion" section.
Regards,
Morad
Here are the updates series information.
Version 1.0
First release.
Version 1.1
New: Adding RTL Support.